home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / flilib.zip / FLISRC.ZIP / AACLOCK.H next >
C/C++ Source or Header  |  1989-11-16  |  408b  |  13 lines

  1. #ifndef AACLOCK_H
  2. #define AACLOCK_H
  3.  
  4. void aa_goclock(void);    /* initialize clock */
  5. long aa_getclock(void);    /* unfiltered 4608 hz clock.  Will sometimes go
  6.                         briefly backwards.  This is ok for FLI file playing.*/
  7.  
  8. #define AA_CLOCK_HZ 4608        /* Frequency of clock */
  9. #define AA_MONITOR_HZ 70        /* Frequency of Monitor */
  10. #define AA_CLOCK_SCALE (AA_CLOCK_HZ/AA_MONITOR_HZ)
  11.  
  12. #endif /* AACLOCK_H */
  13.